home *** CD-ROM | disk | FTP | other *** search
/ Club KidSoft Volume 3 #1 / ClubKidsoft.iso / movies / clubart.dir / 00035_Script_in animation < prev    next >
Text File  |  1995-02-01  |  680b  |  37 lines

  1. on enterFrame
  2.   global gArtPlay
  3.   
  4.   -- position the sprites
  5.   advanceArt
  6.   if(gArtPlay = FALSE) then
  7.     testClubArtButtons
  8.   end if
  9. end
  10.  
  11. --**********************************************************************
  12. on mouseDown
  13.   global gArtPlay
  14.   if(gArtPlay = FALSE) then
  15.     testDownClubArtButtons
  16.   end if
  17. end
  18. -------------------------------------
  19. -- move the sprites around
  20. -------------------------------------
  21.  
  22. on mouseUp
  23.   global gArtPlay
  24.   if(gArtPlay = FALSE) then
  25.     testUpClubArtButtons
  26.     moveSpritesClubArt
  27.   end if
  28.   
  29. end
  30.  
  31. on exitFrame
  32.   
  33.   global gArtPlay
  34.   --  global gHandPosition
  35.   
  36.   if gArtPlay = FALSE then go the frame
  37. end